runtime.hchan.dataqsiz (field)
19 uses
runtime (current package)
chan.go#L36: dataqsiz uint // size of the circular queue
chan.go#L115: c.dataqsiz = uint(size)
chan.go#L149: if c.dataqsiz == 0 {
chan.go#L154: return c.qcount == c.dataqsiz
chan.go#L236: if c.qcount < c.dataqsiz {
chan.go#L244: if c.sendx == c.dataqsiz {
chan.go#L324: if c.dataqsiz == 0 {
chan.go#L333: if c.recvx == c.dataqsiz {
chan.go#L373: if c.recvx == c.dataqsiz {
chan.go#L494: if c.dataqsiz == 0 {
chan.go#L623: if c.recvx == c.dataqsiz {
chan.go#L707: if c.dataqsiz == 0 {
chan.go#L732: if c.recvx == c.dataqsiz {
chan.go#L842: return int(c.dataqsiz)
chan.go#L849: return int(c.dataqsiz)
select.go#L297: if c.qcount < c.dataqsiz {
select.go#L467: if c.recvx == c.dataqsiz {
select.go#L488: if c.sendx == c.dataqsiz {
time.go#L400: if c.dataqsiz == 0 {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |